Xbasic

>= Greater than or Equal to

Description

This operator results in TRUE if the expression on the left is greater than, or equal to, the expression on the right.

>= Greater than or Equal to Example:

If SALES is 1000 or more

? SALES>= 1000
= .T.

If LASTNAME precedes "Kalil" in an alphabetical ordering of names

? LASTNAME>= "Kalil
= .F.

See Also